home *** CD-ROM | disk | FTP | other *** search
/ Power Programmierung 2 / Power-Programmierung CD 2 (Tewi)(1994).iso / gnu / djgpp / contrib / dvx / inc / x11 / xaw / mailbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-07-15  |  1.8 KB  |  60 lines

  1. /*
  2.  * $XConsortium: Mailbox.h,v 1.19 89/07/21 01:55:46 kit Exp $
  3.  *
  4.  * Copyright 1988 Massachusetts Institute of Technology
  5.  *
  6.  * Permission to use, copy, modify, and distribute this software and its
  7.  * documentation for any purpose and without fee is hereby granted, provided
  8.  * that the above copyright notice appear in all copies and that both that
  9.  * copyright notice and this permission notice appear in supporting
  10.  * documentation, and that the name of M.I.T. not be used in advertising or
  11.  * publicity pertaining to distribution of the software without specific,
  12.  * written prior permission.  M.I.T. makes no representations about the
  13.  * suitability of this software for any purpose.  It is provided "as is"
  14.  * without express or implied warranty.
  15.  *
  16.  * Author:  Jim Fulton, MIT X Consortium
  17.  */
  18.  
  19. #ifndef _XawMailbox_h
  20. #define _XawMailbox_h
  21.  
  22. /*
  23.  * Mailbox widget; looks a lot like the clock widget, don't it...
  24.  */
  25.  
  26. /* resource names used by mailbox widget that aren't defined in StringDefs.h */
  27.  
  28. #define XtNupdate "update"
  29.  
  30. /* command to exec */
  31. #define XtNcheckCommand "checkCommand"
  32. #define XtNonceOnly "onceOnly"
  33.  
  34. /* Int: volume for bell */
  35. #define XtNvolume "volume"
  36. #define XtNfullPixmap "fullPixmap"
  37. #define XtNfullPixmapMask "fullPixmapMask"
  38. #define XtNemptyPixmap "emptyPixmap"
  39. #define XtNemptyPixmapMask "emptyPixmapMask"
  40. #define XtNflip "flip"
  41. #define XtNshapeWindow "shapeWindow"
  42.  
  43. #define XtCCheckCommand "CheckCommand"
  44. #define XtCVolume "Volume"
  45. #define XtCPixmapMask "PixmapMask"
  46. #define XtCFlip "Flip"
  47. #define XtCShapeWindow "ShapeWindow"
  48.  
  49.  
  50. /* structures */
  51.  
  52. typedef struct _MailboxRec *MailboxWidget;  /* see MailboxP.h */
  53. typedef struct _MailboxClassRec *MailboxWidgetClass;  /* see MailboxP.h */
  54.  
  55.  
  56. extern WidgetClass mailboxWidgetClass;
  57.  
  58. #endif /* _XawMailbox_h */
  59. /* DON'T ADD STUFF AFTER THIS #endif */
  60.